home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Reverse Code Engineering RCE CD +sandman 2000
/
ReverseCodeEngineeringRceCdsandman2000.iso
/
RCE
/
Tools
/
Win95 Secrets
/
SETUP.Z
/
W32SPASM.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1995-07-19
|
452 b
|
25 lines
;==================================
; W32SVSPY - Matt Pietrek 1995
; FILE: W32SPASM.ASM
;==================================
.386
.model flat
extrn _lpfnOriginalVxDCall:fword
extrn _LogVxDCall@8:proc
.code
public _NewVxDCall_entry
_NewVxDCall_entry proc
pushad
push eax
lea eax, [esp+36]
push eax
call _LogVxDCall@8
popad
jmp [_lpfnOriginalVxDCall]
_NewVxDCall_entry endp
end